home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Internet
/
Collection of Internet.iso
/
msdos
/
pktdrvr
/
sources
/
chrout.asm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1992-08-05
|
195 b
|
13 lines
;put into the public domain by Russell Nelson, nelson@crynwr.com
public chrout
chrout:
push ax ;print the char in al.
push dx
mov dl,al
mov ah,2
int 21h
pop dx
pop ax
ret